home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / doom / axxwar_1.zip / SOURCES / LOGINMES.QC < prev    next >
Text File  |  1997-03-12  |  2KB  |  41 lines

  1. // AxxWars Release v1.0
  2. // LoginMess.qc
  3.  
  4.  
  5. // AXXMD START
  6. void() MOTD =
  7.    {
  8.       if(cvar("deathmatch"))
  9.         {
  10.         if (deathmatch == 1)
  11.             centerprint(self, "AxxWars v1.0, DeathMatch 1.\nAll items respawn normally.");
  12.         if (deathmatch == 2)
  13.             centerprint(self, "AxxWars v1.0, DeathMatch 2.\nWeapons stay when picked up.");
  14.         if (deathmatch == 3)
  15.             centerprint(self, "AxxWars v1.0, MonsterMatch.\nHit monsters with Axe to make\nthem friendly.");
  16.         if (deathmatch == 4) 
  17.             centerprint(self, "AxxWars v1.0, AxxFest.\nThe only weapon allowed is the Axe");
  18.         if (deathmatch == 5) 
  19.             centerprint(self, "AxxWars v1.0, HeadHunt.\nKill opponents, pickup their heads,\nand bring them to the altar.");
  20.         }
  21.     if(cvar("teamplay"))
  22.              {    
  23.             if (teamplay == 1)
  24.                 centerprint(self, "AxxWars v1.0, TeamPlay 1.\nTeammates can damage eachother.");
  25.             if (teamplay == 2)
  26.                 centerprint(self, "AxxWars v1.0, Teamplay 2.\nTeammates cannot damage eachother.");
  27.             if (teamplay == 4)
  28.                 centerprint(self, "AxxWars v1.0, It!\nKill It! for three points.\nGet killed by It! to become It!");
  29.             if (teamplay == 5)
  30.                 centerprint(self, "AxxWars v1.0, Ti!\nIt! gets three points per kill.\nKill It! to become It!");
  31.             if (teamplay == 6)
  32.                 centerprint(self, "AxxWars v1.0, QuakeTi!\nIt! has multidamage. \nKill It! to become It!\nand three points.");
  33.             if (teamplay == 7)
  34.                 centerprint(self, "AxxWars v1.0, Capture the Flag.\nCapture other team's flag.\nAnd bring it to your Team's base.");
  35.             if (teamplay == 8)
  36.                 centerprint(self, "AxxWars v1.0, King of the Hill.\nNo points for kills.\nStay close to flag for points");
  37.              }
  38.       
  39. };
  40. // AXXMD END
  41.